home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Unix / CNews / Source / libfake / fsync.c < prev    next >
Encoding:
Text File  |  1988-12-29  |  105 b   |  12 lines

  1. /*
  2.  * fsync(2) emulation for systems lacking it
  3.  */
  4.  
  5. /* ARGSUSED */
  6. int
  7. fsync(fd)
  8. int fd;
  9. {
  10.     return 0;
  11. }
  12.